home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form7
- BorderStyle = 1 'Fixed Single
- Caption = "Save file"
- ClientHeight = 4860
- ClientLeft = 1275
- ClientTop = 900
- ClientWidth = 7275
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 177
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Icon = "SAVE2.frx":0000
- LinkTopic = "Form7"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 4860
- ScaleWidth = 7275
- Begin VB.TextBox filename
- Height = 285
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 2295
- End
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 3120
- TabIndex = 6
- Top = 3720
- Width = 4095
- End
- Begin VB.CommandButton cancel
- BackColor = &H80000005&
- Caption = "Cancel"
- Height = 375
- Left = 3840
- TabIndex = 5
- Top = 4200
- Width = 2175
- End
- Begin VB.CommandButton save1
- BackColor = &H80000005&
- Caption = "Save"
- Default = -1 'True
- Height = 375
- Left = 1320
- TabIndex = 4
- Top = 4200
- Width = 2175
- End
- Begin VB.FileListBox File1
- Height = 3015
- Left = 120
- Pattern = "*.htm*"
- TabIndex = 3
- Top = 600
- Width = 2295
- End
- Begin VB.DirListBox Dir1
- Height = 2790
- Left = 3120
- TabIndex = 0
- Top = 600
- Width = 4095
- End
- Begin VB.Label path
- BackStyle = 0 'Transparent
- BorderStyle = 1 'Fixed Single
- Height = 255
- Left = 3120
- TabIndex = 1
- Top = 120
- Width = 4095
- End
- Attribute VB_Name = "Form7"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Sub cancel_Click()
- Unload Me
- End Sub
- Sub Dir1_Change()
- File1 = Dir1
- path = Dir1.path
- End Sub
- Sub Drive1_Change()
- On Error GoTo 2
- Dir1 = Drive1
- Resume 3
- End Sub
- Sub File1_Click()
- filename.Text = File1
- End Sub
- Sub File1_PatternChange()
- File1.Pattern = "*.htm*"
- End Sub
- Sub Form_Load()
- path.Caption = Dir1
- End Sub
- Sub save1_Click()
- Unload Me
- Form6.Visible = True
- End Sub
-